webrtc: fix no-media-call the legacy offer options need to be passed to createOffer, not the then. regression from #12715, caused chrome to fail on import 
diff --git a/webrtc/no-media-call.html b/webrtc/no-media-call.html index c973932..8f4f596 100644 --- a/webrtc/no-media-call.html +++ b/webrtc/no-media-call.html 
@@ -125,8 +125,8 @@    // The offerToReceiveVideo is necessary and sufficient to make  // an actual connection. - gFirstConnection.createOffer().then(onOfferCreated, failed('createOffer'), - {offerToReceiveVideo: true}); + gFirstConnection.createOffer({offerToReceiveVideo: true}) + .then(onOfferCreated, failed('createOffer'));  });  </script>